Run this command to install the SDK:

npm install cloudmersive-convert-api-client --save


Or add this snippet to your package.json:

  "dependencies": {
    "cloudmersive-convert-api-client": "^2.6.3"
  }


var CloudmersiveConvertApiClient = require('cloudmersive-convert-api-client');
var defaultClient = CloudmersiveConvertApiClient.ApiClient.instance;

// Configure API key authorization: Apikey
var Apikey = defaultClient.authentications['Apikey'];
Apikey.apiKey = 'YOUR API KEY';



var apiInstance = new CloudmersiveConvertApiClient.EditHtmlApi();

var opts = { 
  'title': "title_example", // String | Optional: The title of the HTML document
  'cssUrl': "cssUrl_example", // String | Optional: A CSS style URL to be added to the document.
  'cssInline': "cssInline_example", // String | Optional: An inline CSS style to be added to the document.
  'javascriptUrl': "javascriptUrl_example", // String | Optional: Javascript URL to be added to the document.
  'javascriptInline': "javascriptInline_example" // String | Optional: Inline Javascript to be added to the document.
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
apiInstance.editHtmlHtmlCreateBlankDocument(opts, callback);

Run this command to install the SDK:

pip install cloudmersive-convert-api-client


from __future__ import print_function
import time
import cloudmersive_convert_api_client
from cloudmersive_convert_api_client.rest import ApiException
from pprint import pprint

# Configure API key authorization: Apikey
configuration = cloudmersive_convert_api_client.Configuration()
configuration.api_key['Apikey'] = 'YOUR_API_KEY'



# create an instance of the API class
api_instance = cloudmersive_convert_api_client.EditHtmlApi(cloudmersive_convert_api_client.ApiClient(configuration))
title = 'title_example' # str | Optional: The title of the HTML document (optional)
css_url = 'css_url_example' # str | Optional: A CSS style URL to be added to the document. (optional)
css_inline = 'css_inline_example' # str | Optional: An inline CSS style to be added to the document. (optional)
javascript_url = 'javascript_url_example' # str | Optional: Javascript URL to be added to the document. (optional)
javascript_inline = 'javascript_inline_example' # str | Optional: Inline Javascript to be added to the document. (optional)

try:
    # Create a Blank HTML Document
    api_response = api_instance.edit_html_html_create_blank_document(title=title, css_url=css_url, css_inline=css_inline, javascript_url=javascript_url, javascript_inline=javascript_inline)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling EditHtmlApi->edit_html_html_create_blank_document: %s\n" % e)

Run this command to install the SDK:

Install-Package Cloudmersive.APIClient.NET.DocumentAndDataConvert -Version 3.4.2


using System;
using System.Diagnostics;
using Cloudmersive.APIClient.NET.DocumentAndDataConvert.Api;
using Cloudmersive.APIClient.NET.DocumentAndDataConvert.Client;
using Cloudmersive.APIClient.NET.DocumentAndDataConvert.Model;

namespace Example
{
    public class EditHtmlHtmlCreateBlankDocumentExample
    {
        public void main()
        {
            // Configure API key authorization: Apikey
            Configuration.Default.AddApiKey("Apikey", "YOUR_API_KEY");
            
            

            var apiInstance = new EditHtmlApi();
            var title = title_example;  // string | Optional: The title of the HTML document (optional) 
            var cssUrl = cssUrl_example;  // string | Optional: A CSS style URL to be added to the document. (optional) 
            var cssInline = cssInline_example;  // string | Optional: An inline CSS style to be added to the document. (optional) 
            var javascriptUrl = javascriptUrl_example;  // string | Optional: Javascript URL to be added to the document. (optional) 
            var javascriptInline = javascriptInline_example;  // string | Optional: Inline Javascript to be added to the document. (optional) 

            try
            {
                // Create a Blank HTML Document
                byte[] result = apiInstance.EditHtmlHtmlCreateBlankDocument(title, cssUrl, cssInline, javascriptUrl, javascriptInline);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling EditHtmlApi.EditHtmlHtmlCreateBlankDocument: " + e.Message );
            }
        }
    }
}

To install with Maven, add a reference to the repository in pom.xml:

<repositories>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
</repositories>


And add a reference to the dependency in pom.xml:

<dependencies>
<dependency>
    <groupId>com.github.Cloudmersive</groupId>
    <artifactId>Cloudmersive.APIClient.Java</artifactId>
    <version>v4.25</version>
</dependency>
</dependencies>


To install with Gradle, add it in your root build.gradle at the end of repositories:

allprojects {
	repositories {
		...
		maven { url 'https://jitpack.io' }
	}
}


And add the dependency in build.gradle:

dependencies {
        implementation 'com.github.Cloudmersive:Cloudmersive.APIClient.Java:v4.25'
}


// Import classes:
//import com.cloudmersive.client.invoker.ApiClient;
//import com.cloudmersive.client.invoker.ApiException;
//import com.cloudmersive.client.invoker.Configuration;
//import com.cloudmersive.client.invoker.auth.*;
//import com.cloudmersive.client.EditHtmlApi;

ApiClient defaultClient = Configuration.getDefaultApiClient();

// Configure API key authorization: Apikey
ApiKeyAuth Apikey = (ApiKeyAuth) defaultClient.getAuthentication("Apikey");
Apikey.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//Apikey.setApiKeyPrefix("Token");

EditHtmlApi apiInstance = new EditHtmlApi();
String title = "title_example"; // String | Optional: The title of the HTML document
String cssUrl = "cssUrl_example"; // String | Optional: A CSS style URL to be added to the document.
String cssInline = "cssInline_example"; // String | Optional: An inline CSS style to be added to the document.
String javascriptUrl = "javascriptUrl_example"; // String | Optional: Javascript URL to be added to the document.
String javascriptInline = "javascriptInline_example"; // String | Optional: Inline Javascript to be added to the document.
try {
    byte[] result = apiInstance.editHtmlHtmlCreateBlankDocument(title, cssUrl, cssInline, javascriptUrl, javascriptInline);
    System.out.println(result);
} catch (ApiException e) {
    System.err.println("Exception when calling EditHtmlApi#editHtmlHtmlCreateBlankDocument");
    e.printStackTrace();
}

Run this command to install the SDK:

composer require cloudmersive/cloudmersive_document_convert_api_client


<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: Apikey
$config = Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('Apikey', 'YOUR_API_KEY');



$apiInstance = new Swagger\Client\Api\EditHtmlApi(
    
    
    new GuzzleHttp\Client(),
    $config
);
$title = "title_example"; // string | Optional: The title of the HTML document
$css_url = "css_url_example"; // string | Optional: A CSS style URL to be added to the document.
$css_inline = "css_inline_example"; // string | Optional: An inline CSS style to be added to the document.
$javascript_url = "javascript_url_example"; // string | Optional: Javascript URL to be added to the document.
$javascript_inline = "javascript_inline_example"; // string | Optional: Inline Javascript to be added to the document.

try {
    $result = $apiInstance->editHtmlHtmlCreateBlankDocument($title, $css_url, $css_inline, $javascript_url, $javascript_inline);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling EditHtmlApi->editHtmlHtmlCreateBlankDocument: ', $e->getMessage(), PHP_EOL;
}
?>

Add the Objective-C client to your Podfile:

pod 'CloudmersiveDocumentAndDataConvertApiClient', '~> 1.0'


CMDefaultConfiguration *apiConfig = [CMDefaultConfiguration sharedConfig];

// Configure API key authorization: (authentication scheme: Apikey)
[apiConfig setApiKey:@"YOUR_API_KEY" forApiKeyIdentifier:@"Apikey"];




NSString* title = @"title_example"; // Optional: The title of the HTML document (optional)
NSString* cssUrl = @"cssUrl_example"; // Optional: A CSS style URL to be added to the document. (optional)
NSString* cssInline = @"cssInline_example"; // Optional: An inline CSS style to be added to the document. (optional)
NSString* javascriptUrl = @"javascriptUrl_example"; // Optional: Javascript URL to be added to the document. (optional)
NSString* javascriptInline = @"javascriptInline_example"; // Optional: Inline Javascript to be added to the document. (optional)

CMEditHtmlApi*apiInstance = [[CMEditHtmlApi alloc] init];

// Create a Blank HTML Document
[apiInstance editHtmlHtmlCreateBlankDocumentWithTitle:title
              cssUrl:cssUrl
              cssInline:cssInline
              javascriptUrl:javascriptUrl
              javascriptInline:javascriptInline
          completionHandler: ^(NSData* output, NSError* error) {
                        if (output) {
                            NSLog(@"%@", output);
                        }
                        if (error) {
                            NSLog(@"Error calling CMEditHtmlApi->editHtmlHtmlCreateBlankDocument: %@", error);
                        }
                    }];

Add the Ruby client to your Gemfile:

gem 'cloudmersive-convert-api-client', '~> 2.1.6'


# load the gem
require 'cloudmersive-convert-api-client'
# setup authorization
CloudmersiveConvertApiClient.configure do |config|
  # Configure API key authorization: Apikey
  config.api_key['Apikey'] = 'YOUR API KEY'
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
  #config.api_key_prefix['Apikey'] = 'Bearer'
end

api_instance = CloudmersiveConvertApiClient::EditHtmlApi.new

opts = { 
  title: 'title_example', # String | Optional: The title of the HTML document
  css_url: 'css_url_example', # String | Optional: A CSS style URL to be added to the document.
  css_inline: 'css_inline_example', # String | Optional: An inline CSS style to be added to the document.
  javascript_url: 'javascript_url_example', # String | Optional: Javascript URL to be added to the document.
  javascript_inline: 'javascript_inline_example' # String | Optional: Inline Javascript to be added to the document.
}

begin
  #Create a Blank HTML Document
  result = api_instance.edit_html_html_create_blank_document(opts)
  p result
rescue CloudmersiveConvertApiClient::ApiError => e
  puts "Exception when calling EditHtmlApi->edit_html_html_create_blank_document: #{e}"
end

Download and copy the /client folder into your Apex project:

Download Apex Client

SwagEditHtmlApi api = new SwagEditHtmlApi();
SwagClient client = api.getClient();

// Configure API key authorization: Apikey
ApiKeyAuth Apikey = (ApiKeyAuth) client.getAuthentication('Apikey');
Apikey.setApiKey('YOUR API KEY');

Map<String, Object> params = new Map<String, Object>{
    'title' => 'title_example',
    'cssUrl' => 'cssUrl_example',
    'cssInline' => 'cssInline_example',
    'javascriptUrl' => 'javascriptUrl_example',
    'javascriptInline' => 'javascriptInline_example'
};

try {
    // cross your fingers
    Blob result = api.editHtmlHtmlCreateBlankDocument(params);
    System.debug(result);
} catch (Swagger.ApiException e) {
    // ...handle your exceptions
}

Install libcurl in your C/C++ project:

libcurl/7.75.0
CURL *curl;
CURLcode res;
curl = curl_easy_init();
if(curl) {
     curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, "POST");
     curl_easy_setopt(curl, CURLOPT_URL, "https://api.cloudmersive.com/convert/edit/html/create/blank");
     curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
     curl_easy_setopt(curl, CURLOPT_DEFAULT_PROTOCOL, "https");
     struct curl_slist *headers = NULL;
     headers = curl_slist_append(headers, "title: <string>");
     headers = curl_slist_append(headers, "cssUrl: <string>");
     headers = curl_slist_append(headers, "cssInline: <string>");
     headers = curl_slist_append(headers, "javascriptUrl: <string>");
     headers = curl_slist_append(headers, "javascriptInline: <string>");
     headers = curl_slist_append(headers, "Apikey: YOUR-API-KEY-HERE");
     curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
     res = curl_easy_perform(curl);
}
curl_easy_cleanup(curl);
curl --location --request POST 'https://api.cloudmersive.com/convert/edit/html/create/blank' \
--header 'title: <string>' \
--header 'cssUrl: <string>' \
--header 'cssInline: <string>' \
--header 'javascriptUrl: <string>' \
--header 'javascriptInline: <string>' \
--header 'Apikey: YOUR-API-KEY-HERE'
import Foundation
#if canImport(FoundationNetworking)
import FoundationNetworking
#endif

var semaphore = DispatchSemaphore (value: 0)

var request = URLRequest(url: URL(string: "https://api.cloudmersive.com/convert/edit/html/create/blank")!,timeoutInterval: Double.infinity)
request.addValue("<string>", forHTTPHeaderField: "title")
request.addValue("<string>", forHTTPHeaderField: "cssUrl")
request.addValue("<string>", forHTTPHeaderField: "cssInline")
request.addValue("<string>", forHTTPHeaderField: "javascriptUrl")
request.addValue("<string>", forHTTPHeaderField: "javascriptInline")
request.addValue("YOUR-API-KEY-HERE", forHTTPHeaderField: "Apikey")

request.httpMethod = "POST"

let task = URLSession.shared.dataTask(with: request) { data, response, error in 
     guard let data = data else {
          print(String(describing: error))
          semaphore.signal()
          return
     }
     print(String(data: data, encoding: .utf8)!)
     semaphore.signal()
}

task.resume()
semaphore.wait()

This code snippet uses the built-in JavaScript XHR request capability


var xhr = new XMLHttpRequest();
xhr.withCredentials = true;

xhr.addEventListener("readystatechange", function() {
     if(this.readyState === 4) {
          console.log(this.responseText);
     }
});

xhr.open("POST", "https://api.cloudmersive.com/convert/edit/html/create/blank");
xhr.setRequestHeader("title", "<string>");
xhr.setRequestHeader("cssUrl", "<string>");
xhr.setRequestHeader("cssInline", "<string>");
xhr.setRequestHeader("javascriptUrl", "<string>");
xhr.setRequestHeader("javascriptInline", "<string>");
xhr.setRequestHeader("Apikey", "YOUR-API-KEY-HERE");

xhr.send();
package main

import (
     "fmt"
     "net/http"
     "io/ioutil"
)

func main() {

     url := "https://api.cloudmersive.com/convert/edit/html/create/blank"
     method := "POST"

     client := &http.Client {
     }
     req, err := http.NewRequest(method, url, nil)

     if err != nil {
          fmt.Println(err)
          return
     }
     req.Header.Add("title", "<string>")
     req.Header.Add("cssUrl", "<string>")
     req.Header.Add("cssInline", "<string>")
     req.Header.Add("javascriptUrl", "<string>")
     req.Header.Add("javascriptInline", "<string>")
     req.Header.Add("Apikey", "YOUR-API-KEY-HERE")

     res, err := client.Do(req)
     if err != nil {
          fmt.Println(err)
          return
     }
     defer res.Body.Close()

     body, err := ioutil.ReadAll(res.Body)
     if err != nil {
          fmt.Println(err)
          return
     }
     fmt.Println(string(body))
}

Walkthrough Video